home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d19 / zdoor33.arc / NOSCROLL.DOC < prev    next >
Text File  |  1989-03-12  |  2KB  |  39 lines

  1.  
  2.    NoScroll
  3.    ─────────────────────────────────────────────────────────────────────────
  4.  
  5.       Included in the ZDoor archive is a program called NoScroll.Com
  6.       that can be used to restrict the output of DSZ so that it does not
  7.       overwrite the caller's ZDoor status line.  To make use of this
  8.       program, simply put it in the same subdirectory as zdoor.exe and
  9.       zdoor.ovr and it will automatically be used by ZDoor anytime a
  10.       shell is made to the DSZ program.
  11.  
  12.       The use of the NoScroll program is completely optional so if, for
  13.       whatever reason, the program turns out to be incompatible with
  14.       your particular video setup, simply remove the NoScroll.Com file
  15.       from the ZDoor subdirectory.
  16.  
  17.       The NoScroll program can also be used in the board's external
  18.       protocol batch files.  Use the following template:
  19.  
  20.       Echo Off
  21.       NoScroll 19
  22.       If Exist PCBErr.Fil Del PCBErr.Fil
  23.          *** call to protocol driver goes here ***
  24.       If Errorlevel 1 Goto Bad
  25.       Goto End
  26.       :Bad
  27.       Copy PCBErr.Old PCBErr.Fil
  28.       :End
  29.       NoScroll
  30.  
  31.       Note that due to the way in which PCBoard positions the cursor
  32.       just prior to calling the protocol batch file, the "Echo Off" line
  33.       in the above template will be displayed and will cause the PCBoard
  34.       status line to scroll up 1 line.  This can be avoided if you are
  35.       running a version of DOS that supports the '@Echo' command
  36.       (versions 3.3 and above).  If this is the case, replace the first
  37.       line in the above template with '@Echo Off' and change the
  38.       parameter passed to NoScroll to 21.
  39.